home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / codelib7 / v_09_08 / 9n08041b < prev    next >
Encoding:
Text File  |  1995-11-01  |  223 b   |  8 lines

  1. /* BOX.H Prototypes for box and line
  2.    drawing functions C.1991 Dave Newman */
  3. #ifndef _BOX
  4. #define _BOX
  5. void draw_box(int,int,int,int,int);
  6. void draw_hline(int,int,int,int);
  7. void draw_vline(int,int,int,int);
  8. #endif